AccountUiState

data class AccountUiState(val isLoggedIn: Boolean = false, val email: String = "default_initial", val displayName: String = "default_initial")

Represents the UI state for the user's account.

Constructors

Link copied to clipboard
constructor(isLoggedIn: Boolean = false, email: String = "default_initial", displayName: String = "default_initial")

Properties

Link copied to clipboard

The display name of the authenticated user.

Link copied to clipboard

The email associated with the logged-in account.

Link copied to clipboard
val isLoggedIn: Boolean = false

Whether the user is currently authenticated.